home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 60.zip / BS1 part 60 / Imagemaster d4.adf / apa.lzh / hlp_arexx8 < prev    next >
Text File  |  1993-08-30  |  18KB  |  778 lines

  1. \ApAssist
  2. \: - This is the Quick Help for the ARexx in IM R/t -
  3. \: ----------------------------------------------------------
  4. \:   Written by David E. Patterson
  5. \: ----------------------------------------------------------
  6.  
  7. \font topaz.font 8
  8. \tc 1
  9. \wr
  10. \lj
  11. \dd "imh_descriptor"
  12.  
  13. \index "hlp_arexx2/gamma-listreq"
  14. \toc "hlp_toc/toc"
  15. \help "aa_help/help
  16.  
  17. \node "iptofront"
  18. \title "IP to Front"
  19. \next "jackin"
  20. \prev ""
  21. \{ \tc 15 Iptofront \} - Brings the IP screens to the front.
  22.     
  23. When used as the last command in a script the main panel is activated, just
  24. as if the user clicked in it.
  25.     
  26. \nw    
  27. Usage - '\{ \tc 15 iptofront\} '
  28.     
  29. \{ \ts bu Sample Script\} :   
  30.     
  31. '\{ \tc 15 iptofront\} ';
  32.  
  33. \endnode
  34.  
  35. \node "jackin"
  36. \title "Jackin"
  37. \next "killbuff"
  38. \prev "iptofront"
  39. \{ \tc 15 Jackin \} - Returns a single pointer in hexadecimal format.
  40.     
  41. \{ \tc 15 Jackin \} returns a hexadecimal pointer, which points to the base
  42. of another group of pointers, each of which points to buffer information.
  43.     
  44. \nw    
  45. Usage - '\{ \tc 15 jackin\} '
  46.     
  47. \{ \ts bu Sample Script\} :
  48.  
  49. options results; 
  50. '\{ \tc 15 jackin\} ';
  51. jackptr = result; 
  52. options; 
  53. 'backuptoundo';
  54. address command; 
  55. 'cmpi:myfile '||jackptr;
  56. address(prtnme);
  57. 'redraw';
  58.  
  59. \endnode
  60.  
  61. \node "killbuff"
  62. \title "Kill Buffer"
  63. \next "lineart"
  64. \prev "jackin"
  65. \{ \tc 15 Killbuff \} - Deletes a buffer.
  66.  
  67. \nw    
  68. Usage - '\{ \tc 15 killbuff <number>\} '
  69.     
  70. \{ \ts bu Sample Script\} :
  71.     
  72. options results;
  73. 'current';
  74. info = result;
  75. options;
  76. parse var info bname','bnumber','xdim','ydim','xdimydim','memused','
  77.                parentname','parentnumber;
  78.                    
  79. '\{ \tc 15 killbuff\} ' bnumber; 
  80.  
  81. \endnode
  82.  
  83. \node "lineart"
  84. \title "Line Art"
  85. \next "lined"
  86. \prev "killbuff"
  87. \{ \tc 15 Lineart \} - Creates line art from a selected area.
  88.  
  89. \nw    
  90. Usage - '\{ \tc 15 lineart <effect> <threshold> <monochrome>
  91.          <blackline>\} '
  92.     
  93. \{ \tc 15      Effect:      0 - 100%
  94.     Threshold:   0 - 255
  95.     Monochorome: 0 = No, 1 = Yes
  96.     Blackline:   0 = No, 1 = Yes  \}
  97.     
  98. \{ \ts bu Sample Script\} :
  99.        
  100. 'area'; 
  101. options results;
  102. 'askprop Effect: 50 0 100';
  103. effect = result;
  104. 'askprop Threshold: 127 0 255';
  105. threshold = result;
  106. 'askyn "No Monochrome" "Monochrome"';
  107. mono = result;
  108. 'askyn "White Line" "Black Line"';
  109. line = result;
  110. options;
  111. '\{ \tc 15 lineart\} ' effect threshold mono line;
  112.  
  113. \endnode
  114.  
  115. \node "lined"
  116. \title "Lined"
  117. \next "listreq"
  118. \prev "lineart"
  119. \{ \tc 15 Lined \} - Converts image brightness to image thickness.
  120.  
  121. \nw    
  122. Usage - '\{ \tc 15 lined <len>\} '
  123.     
  124. \{ \ts bu Sample Script\} :
  125.     
  126. 'area';
  127. '\{ \tc 15 lined 2\} ';
  128.     
  129. * User Interface: \{ \tc 11   Process Panel
  130.                         Special Effects
  131.                             Lined\}
  132.  
  133. \endnode
  134.  
  135. \node "listreq"
  136. \title "List Request"
  137. \next "load"
  138. \prev "lined"
  139. \{ \tc 15 Listreq \} - Calls a list requester.
  140.  
  141. Calls a list requester from which the user can select an entry.  The selected
  142. item returns a string to the calling ARexx script or . 
  143.  
  144. \nw    
  145. Usage - '\{ \tc 15 listreq "Title text",listfile,"keywords,etc"\} '
  146.     
  147. \{ \ts bu Sample Script\} :
  148.     
  149. (Fragment)
  150. options results;
  151. '\{ \tc 15 listreq "Launch a P.I. Module","work:mylist.list","load\} ';
  152. name = result;
  153. options;
  154.   if name = '' then 
  155.     do
  156.       exit 0;
  157.     end;
  158.  
  159. \endnode
  160.  
  161. \node "load"
  162. \title "Load"
  163. \next "loadasblend"
  164. \prev "listreq"
  165. \{ \tc 15 Load \} - Loads an image.
  166.  
  167. Uses the current image path and extension and to load an image. 
  168.     
  169. \nw    
  170. Usage - '\{ \tc 15 load <filename>\} '
  171.     
  172. \{ \ts bu Sample Script\} :
  173.  
  174. options results;
  175. 'askstring "Buffername:" "myfile"'name;
  176. name = result;
  177. options;
  178. '\{ \tc 15 load\} ' name;
  179.     
  180. See Also:  \{ \tc 15 \ts b \link "loadasprimary  " "hlp_arexx8/loadasprimary"
  181.            \link "loadassecondary" "hlp_arexx8/loadassecondary"
  182.            \link "loadimask      " "hlp_arexx8/loadimask"  
  183.            \link "loadmask       " "hlp_arexx8/loadmask"\}
  184.  
  185. \endnode
  186.  
  187. \node "loadasblend"
  188. \title "Load as Blend"
  189. \next "loadasbrush"
  190. \prev "load"
  191. \{ \tc 15 Loadasblend \} - Loads a blend
  192.     
  193. Loads an image file and makes it the blend (alpha) buffer.  Uses the current
  194. image path and extension.
  195.     
  196. \nw    
  197. Usage -  '\{ \tc 15 loadasblend <name>\} ' 
  198.     
  199. \{ \ts bu Sample Script\} :
  200.            
  201. options results;
  202. 'askstring "File Name:" "myfile"'name;
  203. name = result;
  204. options;
  205. '\{ \tc 15 loadasblend\} ' name;
  206.     
  207. See Also:  \{ \tc 15 \ts b \link "loadasprimary  " "hlp_arexx8/loadasprimary"
  208.            \link "loadassecondary" "hlp_arexx8/loadassecondary"
  209.            \link "loadimask      " "hlp_arexx8/loadimask" 
  210.            \link "loadmask       " "hlp_arexx8/loadmask"\}
  211.  
  212. \endnode
  213.  
  214. \node "loadasbrush"
  215. \title "Load as a Brush"
  216. \next "loadasprimary"
  217. \prev "loadasblend"
  218. \{ \tc 15 Loadasbrush \} - Loads a brush.
  219.  
  220. Loads an image file and makes it the brush buffer.  Uses the current image
  221. path and extension.
  222.  
  223. \nw    
  224. Usage - '\{ \tc 15 loadasbrush <name>\} '
  225.     
  226. \{ \ts bu Sample Script\} :
  227.        
  228. options results;
  229. 'askstring "File Name:" "myfile"'name;
  230. name = result;
  231. options;
  232. '\{ \tc 15 loadasbrush\} ' name;
  233.     
  234. See Also: \{ \tc 15 \ts b \link "loadasprimary  " "hlp_arexx8/loadasprimary"
  235.           \link "loadassecondary" "hlp_arexx8/loadassecondary"
  236.           \link "loadimask      " "hlp_arexx8/loadimask"
  237.           \link "loadmask       " "hlp_arexx8/loadmask"\}
  238.                 
  239.  
  240. \endnode
  241.  
  242. \node "loadasprimary"
  243. \title "Load as a Primary Buffer"
  244. \next "loadassecondary"
  245. \prev "loadasbrush"
  246. \{ \tc 15 Loadasprimary \} - Loads an image file and makes it the primary.
  247.  
  248. \nw    
  249. Usage - '\{ \tc 15 loadasprimary <name>\} '
  250.     
  251. \{ \ts bu Sample Script\} :
  252.         
  253. options results;
  254. 'askstring "File Name:" "myfile"'name;
  255. name = result;
  256. '\{ \tc 15 loadasprimary\} ' name;
  257. options;
  258.     
  259. See Also: \{ \ts b \tc 15 \link "loadassecondary " "hlp_arexx8/loadassecondary"
  260.           \link "loadimask       " "hlp_arexx8/loadimask"
  261.           \link "loadmask        " "hlp_arexx8/loadmask"\}
  262.  
  263. \endnode
  264.  
  265. \node "loadassecondary"
  266. \title "Load as a Secondary Buffer"
  267. \next "loadimask"
  268. \prev "loadasprimary"
  269. \{ \tc 15 Loadassecondary \} - Loads an image file and makes it the secondary
  270. buffer.
  271.  
  272. \nw    
  273. Usage - '\{ \tc 15 loadassecondary <name>\} '
  274.     
  275. \{ \ts bu Sample Script\} :
  276.         
  277. options results;
  278. 'askstring "File Name:" "myfile"'name;
  279. name = result;
  280. options;
  281. '\{ \tc 15 loadassecondary\} ' name;
  282.     
  283.     
  284. See Also: \{ \tc 15 \ts b \link "loadasprimary" "hlp_arexx8/loadasprimary"   
  285.           \link "loadimask    " "hlp_arexx8/loadimask"    
  286.           \link "loadmask     " "hlp_arexx8/loadmask" \}
  287.  
  288. \endnode
  289.  
  290. \node "loadimask"
  291. \title "Load Image Mask"
  292. \next "loadmask"
  293. \prev "loadassecondary"
  294. \{ \tc 15 Loadimask \} - Loads the valid image area mask from a saved mask
  295. file.
  296.  
  297. \nw    
  298. Usage - '\{ \tc 15 loadimask <path&filename> [mode]\} '
  299.     
  300. \{ \tc 15 Mode   1 = Replace existing mask (default) 
  301.        2 = OR
  302.        3 = AND
  303.        4 = XOR
  304.        5 = MINUS\}
  305.            
  306. \{ \ts bu Sample Script\} :
  307.     
  308. '\{ \tc 15 loadimask work:images/image.iff\} ';
  309.     
  310. \endnode
  311.  
  312. \node "loadmask"
  313. \title "Load Mask"
  314. \next "loadpal"
  315. \prev "loadimask"
  316. Loadmask - Loads a mask 
  317.  
  318. \nw    
  319. Usage - '\{ \tc 15 loadmask <complete_filename> [mode]\} '
  320.     
  321. \{ \ts bu Sample Script\} :
  322.     
  323. '\{ \tc 15 loadmask work:images/mymask.msk \} ';
  324.     
  325. \{ \tc 15 Mode   1 = Replace existing mask (default) 
  326.        2 = OR
  327.        3 = AND
  328.        4 = XOR
  329.        5 = MINUS\}
  330.            
  331. * User Interface: \{ \tc 11   File I/O
  332.                         Load Mask\}
  333.  
  334. \endnode
  335.  
  336. \node "loadpal"
  337. \title "Load Palette"
  338. \next "lockimage"
  339. \prev "loadmask"
  340. \{ \tc 15 Loadpal \} - Loads a previously saved palette.
  341.  
  342. \nw    
  343. Usage - '\{ \tc 15 loadpal <palettename>\} ';
  344.     
  345. \{ \ts bu Sample Script\} :
  346.     
  347. 'paletteext pa8';                  
  348. 'palettepath work:images';
  349. '\{ \tc 15 loadpal palfile\} ';
  350. 'area';
  351. 'mappal';
  352.     
  353. * User Interface: \{ \tc 11   Paint Panel
  354.                         Adjust Palette
  355.                             LD Palette\}
  356.  
  357. \endnode
  358.  
  359. \node "lockimage"
  360. \title "Lock Image"
  361. \next "lockprimary"
  362. \prev "loadpal"
  363. \{ \tc 15 Lockimage \} - Locks a buffer.
  364.  
  365. \nw    
  366. Usage - '\{ \tc 15 lockimage <buffer number>\} '
  367.     
  368. \{ \ts bu Sample Script\} :
  369.  
  370. options results;
  371. 'secondary';
  372. buffs = result;
  373. parse var buffs name","number","remainder;
  374. '\{ \tc 15 lockimage\} ' number;
  375. options;
  376.  
  377. \endnode
  378.  
  379. \node "lockprimary"
  380. \title "Lock Primary" 
  381. \next "locksecondary"
  382. \prev "lockimage"
  383. \{ \tc 15 Lockprimary \} - Locks Primary Buffer.
  384.  
  385. \nw    
  386. Usage - '\{ \tc 15 lockprimary\} '
  387.     
  388. \{ \ts bu Sample Script\} :
  389.     
  390. '\{ \tc 15 lockprimary\} ';
  391.  
  392. \endnode
  393.  
  394. \node "locksecondary"
  395. \title "Lock Secondary"
  396. \next "lowpass"
  397. \prev "lockprimary"
  398. \{ \tc 15 Locksecondary \} - Locks the secondary buffer.
  399.  
  400. \nw    
  401. Usage - '\{ \tc 15 locksecondary\} '
  402.     
  403. \{ \ts bu Sample Script\} :
  404.     
  405. '\{ \tc 15 locksecondary\} ';
  406.  
  407. \endnode
  408.  
  409. \node "lowpass"
  410. \title "Low Pass Filter"
  411. \next "luma"
  412. \prev "locksecondary"
  413. \{ \tc 15 Lowpass \} - The equivalent of an electronic low-pass filter.
  414.  
  415. \nw    
  416. Usage - '\{ \tc 15 lowpass <effect> <direction>\} '
  417.     
  418. \{ \tc 15 Effect:    0  - 100%
  419. Direction: 1 = horizontal, 2 = vertical, 3 = both\}
  420.     
  421. \{ \ts bu Sample Script\} :
  422.     
  423. 'area';
  424. options results;
  425. askprop effect 50 0 100;
  426. effect = result;
  427. options;
  428. '\{ \tc 15 lowpass\} 'result;
  429. options results;
  430. 'gadgets "Filter","Vertical "Filter" "Horizontal" "Filter","Horizontal and
  431.   Vertical"';  
  432. direction = result;
  433. options;
  434. '\{ \tc 15 lowpass\} ' effect direction;
  435.  
  436. See Also: \{ \tc 15 \ts b \link "highpass" "hlp_arexx7/highpass" \}
  437.  
  438. \endnode
  439.  
  440. \node "luma"
  441. \title "Luma"
  442. \next "macrodefs"
  443. \prev "lowpass"
  444. \{ \tc 15 Luma \} - Changes the region to luma equivalent B&W.
  445.  
  446. \nw    
  447. Usage - '\{ \tc 15 luma\} '
  448.     
  449. \{ \ts bu Sample Script\} :
  450.     
  451. 'area';
  452. '\{ \tc 15 luma\} ';
  453.    
  454. See Also: \{ \tc 15 \ts b \link "negluma" "hlp_arexx9/negluma"\}
  455.   
  456. * User Interface: \{ \tc 11    Process Panel
  457.                           Special Effects
  458.                              Luma\}
  459.             
  460. \endnode
  461.  
  462. \node "macrodefs"
  463. \title "Macro Definitions"
  464. \next "macroext"
  465. \prev "luma"
  466. \{ \tc 15 Macrodefs \} - Returns path and extension of a saved macros.
  467.  
  468. \nw    
  469. Usage - '\{ \tc 15 macrodefs\} '
  470.     
  471. \{ \ts bu Sample Script\} :
  472.     
  473. options results;
  474. '\{ \tc 15 macrodefs\} '
  475. info = result;
  476. parse var info path ','extension;
  477. options;
  478.  
  479. See also:  \{ \tc 15 \ts b \link "blenddefs  " "hlp_arexx5/blenddefs"
  480.            \link "imagedefs  " "hlp_arexx7/imagedefs"    
  481.            \link "palettedefs" "hlp_arexx9/palettedefs"
  482.            \link "renderdefs " "hlp_arexx10/renderdefs"\}
  483.  
  484. \endnode
  485.  
  486. \node "macroext"
  487. \title "Macro Extension"
  488. \next "macroload"
  489. \prev "macrodefs"
  490. \{ \tc 15 Macroext \} - Sets a new extension for saving and loading macros
  491. files.
  492.         
  493. \nw    
  494. Usage - '\{ \tc 15 macroext <newext>\} '
  495.     
  496. \{ \ts bu Sample Script\} :
  497.           
  498. options results;
  499. 'askstring "New Extension:" "mac"'name;
  500. name = result;
  501. options;
  502. '\{ \tc 15 macroext\} ' name;         
  503.  
  504. See Also: \{ \tc 15 \ts b \link "blendext  " "hlp_arexx5/blendext"  
  505.           \link "imageext  " "hlp_arexx7/imageext"
  506.           \link "paletteext" "hlp_arexx9/paletteext"
  507.           \link "renderext " "hlp_arexx10/renderext"\}
  508.                 
  509. * User Interface: \{ \tc 11  Setup Panel
  510.                        Macro Ext \}
  511.  
  512. \endnode
  513.  
  514. \node "macroload"
  515. \title "Macro Load"
  516. \next "macropath"
  517. \prev "macroext"
  518. \{ \tc 15 Macroload \} - Loads a Macro file.
  519.  
  520. \nw    
  521. Usage - '\{ \tc 15 macroload <filename>\} ' (without path)
  522.     
  523. \{ \ts bu Sample Script\} :
  524.    
  525. options results;
  526. 'askstring "File Name:" "macrofile"'name;
  527. name = result;
  528. options;
  529. '\{ \tc 15 macroload\} ' name;
  530.    
  531. See Also: \{ \tc 15 \ts b \link "blendload        " "hlp_arexx5/blendload"   
  532.           \link "loadasblend      " "hlp_arexx8/loadasblend"   
  533.           \link "loadasbrush      " "hlp_arexx8/loadasbrush"
  534.           \link "loadasprimary    " "hlp_arexx8/loadasprimary"
  535.           \link "loadassecondary  " "hlp_arexx8/loadassecondary"
  536.           \link "loadimask        " "hlp_arexx8/loadimask"
  537.           \link "loadmask         " "hlp_arexx8/loadmask"\}
  538.                 
  539. * User Interface: \{ \tc 11   Macro Panel
  540.                         Load Macro Set\} 
  541.  
  542. \endnode
  543.  
  544. \node "macropath"
  545. \title "Macro Path"
  546. \next "mappal"
  547. \prev "macroload"
  548. \{ \tc 15 Macropath \} - Sets the path for loading and saving Macros.
  549.  
  550. \nw    
  551. Usage - '\{ \tc 15 macropath <newpath>\} ' 
  552.     
  553. \{ \ts bu Sample Script\} :
  554.     
  555. '\{ \tc 15 macropath work:macros\} ';
  556.     
  557. See Also: \{ \tc 15 \ts b \link "blendpath  " "hlp_arexx5/blendpath"  
  558.           \link "imagepath  " "hlp_arexx7/imagepath"
  559.           \link "palettepath" "hlp_arexx9/palettepath"
  560.           \link "renderpath " "hlp_arexx10/renderpath" \}
  561.             
  562.  
  563. * User Interface: \{ \tc 11    Setup Panel
  564.                           Macro Path\}                
  565.  
  566. \endnode
  567.  
  568. \node "mappal"
  569. \title "Map Palette"
  570. \next "maxmerge"
  571. \prev "macropath"
  572. \{ \tc 15 Mappal \} - Causes selected region to be mapped to the current
  573. palette.
  574.  
  575. \nw    
  576. Usage - '\{ \tc 15 mappal\} '
  577.     
  578. \{ \ts bu Sample Script\} :
  579.     
  580. 'loadpal palfile';
  581. 'area';
  582. '\{ \tc 15 mappal\} ';
  583.     
  584. * User Interface: \{ \tc 11   Process Panel
  585.                         Special Effects
  586.                             Map to Palette\}
  587. \endnode
  588.  
  589. \node "maxmerge"
  590. \title "Maximum Merge"
  591. \next "maxrub"
  592. \prev "mappal"
  593. \{ \tc 15 Maxmerge \}  - Merges where secondary buffer is darker than the
  594. primary buffer.
  595.  
  596. Merges the secondary buffer into the primary buffer where the color of the
  597. secondary buffer is darker than that in the primary buffer.
  598.     
  599. \nw    
  600. Usage - '\{ \tc 15 maxmerge\} '
  601.     
  602. \{ \ts bu Sample Script\} :
  603.  
  604. 'area';
  605. '\{ \tc 15 maxmerge\} ';
  606.     
  607. See Also: \{ \tc 15 \ts b \link "minmerge" "hlp_arexx8/minmerge" \}
  608.     
  609. * User Interface: \{ \tc 11   Compose Panel
  610.                         Linear Compositions
  611.                             Maximum Merge\}
  612.  
  613. \endnode
  614.  
  615. \node "maxrub"
  616. \title "Maximum Rub Through"
  617. \next "melt"
  618. \prev "maxmerge"
  619. \{ \tc 15 Maxrub \} - Rubs through to primary buffer if the secondary buffer
  620. is darker.
  621.     
  622. Rubs the secondary buffer through the primar buffer where the color of the
  623. secondary buffer is brighter than the primary buffer. 
  624.  
  625. \nw    
  626. Usage - '\{ \tc 15 maxrub\} '
  627.     
  628. \{ \ts bu Sample Script\} :
  629. 'area';
  630. '\{ \tc 15 maxrub\} ';
  631.     
  632. See Also: \{ \tc 15 \ts b \link "minrub" "hlp_arexx8/minrub"\}
  633.     
  634. * User Interface: \{ \tc 11    Compose Panel
  635.                           Linear Compositions
  636.                                 Maximum Merge\}
  637.  
  638. \endnode
  639.  
  640. \node "melt"
  641. \title "Melt"
  642. \next "merge"
  643. \prev "maxrub"
  644. \{ \tc 15 Melt \} - Causes a selected region to appear to be melting.
  645.  
  646. \nw    
  647. Usage - '\{ \tc 15 melt\} '
  648.     
  649. \{ \ts bu Sample Script\} :
  650.     
  651. 'area';
  652. 'melt';
  653.     
  654. * User Interface: \{ \tc 11   Process Panel
  655.                         Special Effects
  656.                             Melt\}
  657.                                 
  658. \endnode
  659.  
  660. \node "merge"
  661. \title "Merge"
  662. \next "message"
  663. \prev "melt"
  664. \{ \tc 15 Merge \} - Merges the secondary buffer into the primary buffer.
  665.  
  666. \nw    
  667. Usage - '\{ \tc 15 merge\} '
  668.     
  669. \{ \ts bu Sample Script\} :
  670.     
  671. 'area';
  672. '\{ \tc 15 merge\} ';
  673.     
  674. See Also: \{ \tc 15 \ts b \link "maxmerge " "hlp_arexx8/maxmerge"
  675.           \link "minmerge " "minmerge"\}
  676.  
  677. * User Interface: \{ \tc 11    Compose Panel
  678.                           Linear Compositions
  679.                                 Merge\}  
  680.  
  681. \endnode
  682.  
  683. \node "message"
  684. \title "Message"
  685. \next "minmerge"
  686. \prev "merge"
  687. \{ \tc 15 Message \} - Presents the user with a message.
  688.  
  689. Halts script presenting user with a message, when the user clicks on the
  690. message gadget the script resumes.
  691.  
  692. \nw    
  693. Usage - '\{ \tc 15 message <textstring>\} '
  694.     
  695. \{ \ts bu Sample Script\} :
  696.     
  697. if flag = 3 then do
  698.  '\{ \tc 15 message Warning there is no Secondary Buffer\} ';
  699.   exit 0;
  700.   End;
  701.       
  702. \endnode
  703.  
  704. \node "minmerge"
  705. \title "Minmerge"
  706. \next "minrub"
  707. \prev "message"
  708. \{ \tc 15 Minmerge \} - Merges where the secondary buffer is brighter than
  709. the primary buffer.
  710.  
  711. Merges the secondary buffer into the primary buffer where the color of the
  712. secondary buffer is darker than the primary buffer.
  713.     
  714. \nw    
  715. Usage - '\{ \tc 15 minmerge\} '
  716.     
  717. \{ \ts bu Sample Script\} :
  718.     
  719. 'area';
  720. '\{ \tc 15 minmerge\} ';
  721.     
  722. * User Interface: \{ \tc 11    Compose Panel
  723.                         Linear Compositions
  724.                            Minimum  Merge\}
  725.  
  726. \endnode
  727.  
  728. \node "minrub"
  729. \title "Minimum Rub Through"
  730. \next "mirror"
  731. \prev "minmerge"
  732. \{ \tc 15 Minrub \} - Rubs through if the secondary buffer is brighter than
  733. the primary buffer.
  734.  
  735. Rubs the secondary buffer through to the primary buffer where the color of
  736. the secondary buffer is brighter than the primary buffer.
  737.     
  738. \nw    
  739. Usage - '\{ \tc 15 minrub\} '
  740.     
  741. \{ \ts bu Sample Script\} :
  742.     
  743. 'area';
  744. '\{ \tc 15 minrub\} ';
  745.     
  746. See Also: \{ \tc 15 \ts b \link "maxrub" "hlp_arexx8/maxrub"\}
  747.     
  748. * User Interface: \{ \tc 11   Compose Panel
  749.                          Linear Compositions
  750.                             Minimum Rub-Thru\}
  751.  
  752. \endnode
  753.  
  754. \node "mirror"
  755. \title "Mirror"
  756. \next ""
  757. \prev "minrub"
  758. \{ \tc 15 Mirror \} - Creates mirror images of a selected area.
  759.  
  760. \nw    
  761. Usage - '\{ \tc 15 mirror <direction> <keephor> <keepvert>\} '
  762.     
  763. \{ \tc 15 Direction:        1 = up, 2 = down, 3 = both
  764. Keep Horizontal:  0 = right, 1 = left;
  765. Keep Veritcal:    0 = up, 1 = down\}
  766.     
  767. \{ \ts bu Sample Script\} :
  768.  
  769. '\{ \tc 15 mirror 1 0 1\} ';
  770.     
  771. * User Interface: \{ \tc 11   Process Panel
  772.                         Geometric Transformations
  773.                             Mirror\}
  774.  
  775.  
  776. \endnode
  777.  
  778.